/* reset */

html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
b, u, i, center, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, 
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, 
q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a, input, button {
	outline: none;
}

a {
	background-color: transparent;
	text-decoration: underline;
	-webkit-text-decoration-skip: objects;
}

input, button {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* fonts */

@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/ProximaNovaRegular.woff2') format('woff2'),
	url('../fonts/ProximaNovaRegular.woff') format('woff'),
	url('../ProximaNovaRegular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/ProximaNovaSemibold.woff2') format('woff2'),
	url('../fonts/ProximaNovaSemibold.woff') format('woff'),
	url('../ProximaNovaSemibold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/ProximaNovaBold.woff2') format('woff2'),
	url('../fonts/ProximaNovaBold.woff') format('woff'),
	url('../ProximaNovaBold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

/* styles */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-width: 320px;
	max-width: 480px;
	margin: 0 auto;
	background: #fff;
	font-family: 'Proxima Nova', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #222;
	cursor: default;
}

header, section, footer {
	margin: 0 auto;
	max-width: 1920px;
}

.wrapper {
	margin: 0 auto;
	padding: 0 10px;
	width: 960px;
	position: relative;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

/* placeholder */

::-webkit-input-placeholder {
	opacity: 1;
	color: #222;
}

:-moz-placeholder {
	opacity: 1;
	color: #222;
}

::-moz-placeholder {
	opacity: 1;
	color: #222;
}

:-ms-input-placeholder {
	opacity: 1;
	color: #222;
}

:focus::-webkit-input-placeholder {
	opacity: 0;
}

:focus:-moz-placeholder {
	opacity: 0;
}

:focus::-moz-placeholder {
	opacity: 0;
}

:focus:-ms-input-placeholder {
	opacity: 0;
}

/* gray_bg */

.gray_bg {
	background: #eae7e5 url(../images/gray_bg.jpg);
}

/* bold */

b {
	font-weight: 700;
}

/* button */

.button {
	display: block;
	width: 320px;
	height: 78px;
	border: 1px solid #f60;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	background-color: #ff6d00;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#ff6d00), to(#ffc600));
	background-image: -webkit-linear-gradient(bottom, #ff6d00 0%, #ffc600 100%);
	background-image: -moz-linear-gradient(bottom, #ff6d00 0%, #ffc600 100%);
	background-image: -o-linear-gradient(bottom, #ff6d00 0%, #ffc600 100%);
	background-image: linear-gradient(to top, #ff6d00 0%, #ffc600 100%);
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 0 0 rgba(255, 255, 255, 0.05);
	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 0 0 rgba(255, 255, 255, 0.05);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 0 0 rgba(255, 255, 255, 0.05);
	font-weight: 600;
	font-size: 22px;
	line-height: 78px;
	color: #3f245a;
	text-decoration: none;
	text-align: center;
	position: relative;
}

.button:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: url(../images/button_glow.png) center 5px no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.button span {
	position: relative;
}

.button:hover {
	background-color: #eb6501;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#eb6501), to(#edb802));
	background-image: -webkit-linear-gradient(bottom, #eb6501 0%, #edb802 100%);
	background-image: -moz-linear-gradient(bottom, #eb6501 0%, #edb802 100%);
	background-image: -o-linear-gradient(bottom, #eb6501 0%, #edb802 100%);
	background-image: linear-gradient(to top, #eb6501 0%, #edb802 100%);
}

.button:active {
	background-color: #edb802;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#edb802), to(#eb6501));
	background-image: -webkit-linear-gradient(bottom, #edb802 0%, #eb6501 100%);
	background-image: -moz-linear-gradient(bottom, #edb802 0%, #eb6501 100%);
	background-image: -o-linear-gradient(bottom, #edb802 0%, #eb6501 100%);
	background-image: linear-gradient(to top, #edb802 0%, #eb6501 100%);
}

.button:active:before {
	display: none;
}

/* titles */

h2 {
	margin: 0 0 30px 0;
	font-size: 36px;
	line-height: 42px;
	text-transform: uppercase;
	text-align: center;
}

h2 .color {
	color: #639;
}

/* items list */

.items_list {
	font-size: 0;
	line-height: 0;
	letter-spacing: -1px;
	text-align: center;
}

.items_list .item {
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: normal;
}

/* steps list */

.steps_list .step_item {
	padding: 0 10px;
	width: 25%;
	position: relative;
}

.steps_list .step_item .number {
	width: 40px;
	height: 40px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: #ffc209;
	font-weight: 600;
	font-size: 22px;
	line-height: 42px;
	text-align: center;
	position: absolute;
	top: 164px;
	left: 50%;
	margin-left: -20px;
}

.steps_list .step_item img {
	display: block;
	margin: 0 auto 30px auto;
	border: 3px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #fff;
}

.steps_list .step_item p {
	color: #fff;
}

/* header */

header {
	padding: 25px 0 0 0;
	height: 620px;
	background: #663399 url(../images/desctop__header__bg.jpg) center top no-repeat;
	color: #fff;
	position: relative;
}

header:after {
	display: block;
	content: '';
	width: 100%;
	height: 18px;
	background: url(../images/header__waves.png) center bottom repeat-x;
	position: absolute;
	left: 0;
	bottom: 0;
}

header h1 {
	font-weight: 700;
	font-size: 46px;
	line-height: 1em;
	color: #fc0;
	text-transform: uppercase;
}

header p {
	margin: 10px 360px 25px 0;
	font-size: 26px;
	line-height: 1.1em;
	text-transform: lowercase;
}

header p span {
	text-transform: capitalize;
}

header ul {
	margin: 0 0 150px 0;
}

header ul li {
	margin: 0 0 16px 0;
	padding: 0 0 0 40px;
	background: url(../images/header__tick_icon.png) left 2px no-repeat;
	font-size: 20px;
}

header ul li:last-child {
	margin: 0;
}

header .price_block {
	margin: 0 0 15px 0;
	width: 320px;
}

header .price_item.old {
	float: left;
}

header .price_item.new {
	float: right;
}

header .price_item .text {
	margin: 0 0 5px 0;
	font-weight: 600;
}

header .price_item .value {
	font-weight: 700;
	font-size: 36px;
	line-height: 36px;
	letter-spacing: 1px;
}

header .price_item.old .value {
	text-decoration: line-through;
}

header .price_item.new .value {
	color: #fc0;
}

/* video */

.video_section {
	padding: 42px 0 50px 0;
}

.video_section h2 .color {
	white-space: nowrap;
}

.video_section .video-container{
	width: 940px;
	height: 500px;
	background: #000;
	overflow: hidden;
	position: relative;
}

.video_section .video-container iframe, 
.video_section .video-container object, 
.video_section .video-container embed {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}                   

/* about */

.about_section {
	padding: 42px 0 44px 0;
}

.about_section .info {
	float: left;
	margin: 34px 20px 0 0;
	width: 460px;
}

.about_section .info p {
	margin: 0 0 25px 0;
}

.about_section .items_list {
	float: left;
	width: 460px;
}

.about_section .items_list .item {
	width: 50%;
}

.about_section .items_list .item:first-child {
	margin: 0 0 16px 0;
}

.about_section .items_list .item:last-child p {
	padding: 0 10px;
}

.about_section .items_list img {
	display: block;
	margin: 0 auto 6px auto;
	border: 6px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

/* advantages */

.advantages_section {
	padding: 42px 0 50px 0;
}

.advantages_section .photo_block {
	float: left;
	margin: 0 20px 0 0;
	width: 460px;
}

.advantages_section .photo_block img {
	display: block;
}

.advantages_section .photo_block .color_item {
	float: left;
	width: 50%;
	height: 85px;
	font-size: 24px;
	line-height: 85px;
	letter-spacing: 0.3px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

.advantages_section .photo_block .color_item:first-child {
	background: #464646;
}

.advantages_section .photo_block .color_item:last-child {
	background: #f90;
}

.advantages_section .info {
	float: left;
	width: 460px;
}

.advantages_section .advantages_list {
	height: 375px;
}

.advantages_section .advantage_item {
	margin: 0 0 22px 0;
	padding: 0 0 0 45px;
	background: url(../images/advantages__tick_icon.png) 10px 2px no-repeat;
}

.advantages_section .advantage_item:last-child {
	margin: 0;
}

.advantages_section .advantage_item h4 {
	margin: 0 0 5px 0;
	font-weight: 700;
	font-size: 20px;
	color: #639;
	text-transform: uppercase;
}

.advantages_section .info .message {
	display: table;
	width: 100%;
	height: 85px;
	background: #639;
}

.advantages_section .info .message p {
	display: table-cell;
	vertical-align: middle;
	padding: 0 15px 0 45px;
	color: #fff;
}

/* use steps */

.use_steps_section {
	padding: 42px 0 50px 0;
	background: #639;
}

.use_steps_section h2 {
	color: #fff;
}

.use_steps_section .info {
	margin: 44px 0 0 0;
	padding: 25px 40px 62px 40px;
	border: 6px solid #af83ca;
	text-align: center;
	color: #fff;
}

.use_steps_section .info h3 {
	margin: 0 0 10px 0;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 0.3px;
	color: #ffc209;
	text-transform: uppercase;
}

.use_steps_section .button {
	margin: -42px auto 0 auto;
}

/* reviews */

.reviews_section {
	padding: 42px 0 50px 0;
}

.reviews_section .review_item {
	display: block;
	padding: 0 0 24px 0;
	width: 300px;
	background: #fff;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 15px;
}


.reviews_section .review_item img {
	display: block;
}

.reviews_section .review_item .author_info {
	padding: 16px 15px 6px 15px;
	font-weight: 600;
}

.reviews_section .review_item p {
	padding: 0 15px;
}

.reviews_section .owl-prev, 
.reviews_section .owl-next {
	width: 48px;
	height: 90px;
	position: absolute;
	top: 69px;
}

.reviews_section .owl-prev {
	-webkit-border-radius: 0px 15px 15px 0px;
	-moz-border-radius: 0px 15px 15px 0px;
	border-radius: 0px 15px 15px 0px;
	background: rgba(255,255,255,0.4) url(../images/reviews__arrow_left.png) center no-repeat;
	left: 0;
}

.reviews_section .owl-next {
	-webkit-border-radius: 15px 0 0 15px;
	-moz-border-radius: 15px 0 0 15px;
	border-radius: 15px 0 0 15px;
	background: rgba(255,255,255,0.4) url(../images/reviews__arrow_right.png) center no-repeat;
	right: 0;
}

/* order steps */

.order_steps_section {
	padding: 42px 0 30px 0;
	background: #639;
	position: relative;
}

.order_steps_section h2 {
	color: #fff;
}

.order_steps_section .step_item p {
	font-size: 16px;
	line-height: 22px;
}

/* order */

.order_section {
	padding: 42px 0 0 0;
	background: #e6dcd4 url(../images/desctop__order__bg.jpg) center bottom no-repeat;
	position: relative;
}

.order_section:before {
	display: block;
	content: '';
	width: 100%;
	height: 18px;
	background: url(../images/order__waves.png) center bottom repeat-x;
	position: absolute;
	left: 0;
	top: 0;
}

.order_section h2 {
	padding: 0 240px 0 0;
	text-align: left;
}
.order_section h2 .old-cost{
    padding: 0 10px;
    text-decoration: line-through;
}
.order_section h2 .new-cost{
    font-weight: 700;
}
.order_section h2 small{
    font-size: 0.8em;
}
.order_section form {
	padding: 24px 0 30px 0;
	width: 380px;
	-webkit-border-radius: 15px 15px 0px 0px;
	-moz-border-radius: 15px 15px 0px 0px;
	border-radius: 15px 15px 0px 0px;
	background: #639;
}

.order_section .timer_block {
	margin: 0 auto 12px auto;
	width: 300px;
	text-align: center;
}

.order_section .timer_block p {
	margin: 0 0 10px 0;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}

.order_section .timer_block .timer_item {
	float: left;
	width: 80px;
}

.order_section .timer_block .timer_item:nth-child(2) {
	margin: 0 30px;
	position: relative;
}

.order_section .timer_block .timer_item:nth-child(2):before, 
.order_section .timer_block .timer_item:nth-child(2):after {
	display: block;
	content: ':';
	width: 30px;
	font-weight: 700;
	font-size: 36px;
	line-height: 46px;
	color: #fff;
	position: absolute;
	top: 0;
}

.order_section .timer_block .timer_item:nth-child(2):before {
	left: -30px;
}

.order_section .timer_block .timer_item:nth-child(2):after {
	right: -30px;
}

.order_section .timer_block .count {
	margin: 0 0 2px 0;
	height: 46px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: #fff;
	font-weight: 600;
	font-size: 36px;
	line-height: 46px;
}

.order_section .timer_block .text {
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.order_section input {
	margin: 0 auto 15px auto;
	padding: 0 15px;
	width: 320px;
	height: 70px;
	border: 1px solid #fff;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	background: #fff;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.17);
	-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.17);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.17);
	font-family: 'Proxima Nova', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #222;
	text-align: center;
}

.order_section button {
	margin: 0 auto;
	font-family: 'Proxima Nova', sans-serif;
	cursor: pointer;
}

/* footer */

footer {
	padding: 25px 0;
	font-size: 14px;
	line-height: 14px;
	text-align: center;
}

footer img {
	display: block;
	margin: 0 auto 10px auto;
}

footer a {
	color: #000;
}

footer a:hover {
	text-decoration: none;
}

	/* styles */

	.wrapper {
		width: 640px;
	}

	/* titles */

	h2 {
		font-size: 32px;
		line-height: 40px;
	}

	/* steps list */

	.steps_list .step_item {
		padding: 0 30px;
		width: 50%;
	}

	.steps_list .step_item:first-child {
		margin: 0 0 34px 0;
	}

	/* header */

	header {
		background-image: url(../images/tablet__header__bg.jpg);
	}

	header p {
		margin: 10px 250px 25px 0;
		text-transform: none;
	}

	header p span {
		display: none;
	}

	/* about */

	.about_section .info {
		float: none;
		margin: 0 0 34px 0;
		width: 100%;
	}

	.about_section .items_list {
		float: none;
		width: 100%;
	}

	.about_section .items_list .item {
		padding: 0 40px;
	}

	.about_section .items_list .item:first-child {
		margin: 0 0 34px 0;
	}

	.about_section .items_list .item:last-child {
		padding: 0 40px;
	}

	/* video */

	.video_section .video-container{
		width: 620px;
		height: 344px;
	}

	/* advantages */

	.advantages_section .photo_block {
		float: none;
		margin: 0 auto 40px auto;
	}

	.advantages_section .info {
		float: none;
		margin: 0 auto;
	}

	.advantages_section .advantages_list {
		height: auto;
	}

	.advantages_section .advantage_item {
		padding: 0 0 0 35px;
		background: url(../images/advantages__tick_icon.png) 0 2px no-repeat;
	}

	.advantages_section .advantage_item:last-child {
		margin: 0 0 22px 0;
	}

	.advantages_section .info .message {
		display: block;
		height: auto;
	}

	.advantages_section .info .message p {
		display: block;
		padding: 18px 10px 19px 35px;
	}

	/* use steps */

	.use_steps_section .info {
		padding: 25px 30px 62px 30px;
	}

	/* order */

	.order_section {
		background: #e6dcd4 url(../images/tablet__order__bg.jpg) center bottom no-repeat;
	}

	.order_section h2 {
		padding: 0;
	}



	/* styles */

	body {
		font-size: 16px;
		line-height: 22px;
	}

	.wrapper {
		width: 320px;
	}

	/* button */

	.button {
		width: 300px;
	}

	/* titles */

	h2 {
		font-size: 26px;
		line-height: 32px;
	}

	/* items list */

	.items_list .item {
		font-size: 16px;
		line-height: 22px;
	}

	/* steps list */

	.steps_list .step_item {
		margin: 0 0 34px 0;
		padding: 0 25px;
		width: 100%;
	}

	.steps_list .step_item:last-child {
		margin: 0;
	}

	/* header */

	header {
		padding: 20px 0 45px 0;
		height: auto;
		background-image: url(../images/mobile__header__bg.jpg);
	}

	header h1 {
		font-size: 36px;
		line-height: 36px;
		text-align: center;
	}

	header p {
		margin: 4px 0 310px 0;
		font-size: 22px;
		line-height: 26px;
		text-transform: none;
		text-align: center;
	}

	header ul {
		margin: 0 0 25px 0;
	}

	header ul li {
		padding: 0 0 0 35px;
		background: url(../images/header__tick_icon.png) left 1px no-repeat;
		font-size: 16px;
	}

	header .price_block {
		width: 300px;
	}

	header .price_item .value {
		font-size: 32px;
		line-height: 32px;
	}

	/* video */

	.video_section .video-container{
		width: 300px;
		height: 170px;
	}

	/* about */

	.about_section .info {
		text-align: center;
	}

	.about_section .items_list .item {
		margin: 0 0 24px 0;
		padding: 0 45px;
		width: 100%;
	}

	.about_section .items_list .item:first-child {
		margin: 0 0 24px 0;
	}

	.about_section .items_list .item:last-child {
		margin: 0;
	}

	.about_section .items_list .item:last-child {
		padding: 0 45px;
	}

	/* advantages */

	.advantages_section .photo_block {
		margin: 0 0 34px 0;
		width: 100%;
	}

	.advantages_section .photo_block .color_item {
		height: 60px;
		font-size: 22px;
		line-height: 60px;
	}

	.advantages_section .info {
		width: 100%;
	}

	.advantages_section .advantage_item {
		background: url(../images/advantages__tick_icon.png) 0 1px no-repeat;
	}

	.advantages_section .advantage_item:last-child {
		margin: 0 0 34px 0;
	}

	.advantages_section .advantage_item h4 {
		font-size: 18px;
	}

	/* use steps */

	.use_steps_section .info {
		margin: 44px 0 40px 0;
		padding: 25px 20px;
	}

	.use_steps_section .info h3 {
		padding: 0 10px;
		font-size: 20px;
		line-height: 26px;
	}

	.use_steps_section .button {
		margin: 0 auto;
	}

	/* order */
    .order_section:before{
        display: none;
    }
	.order_section {
        padding-top: 30px;
		background: url(../images/mobile__order__bg.jpg) center 0 no-repeat;
	}

	.order_section .wrapper {
		padding: 0;
		width: 100%;
	}

	.order_section h2 {
		margin: 0 auto 305px auto;
		width: 300px;
		color: #639;
		text-align: center;
	}

	.order_section h2 .no_mobile_text {
		display: none;
	}
    .order_section .timer_block{
        margin-bottom: 20px;
    }
	.order_section form {
		padding: 10px 0 30px 0;
		width: 100%;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}

	.order_section input {
		width: 300px;
	}
